@import url('https://fonts.googleapis.com/css2?family=Convergence&display=swap');
@import url("../../webfonts/Convergence_Regular/stylesheet.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  color: #111;
  padding-top: 90px; /* prevent nav overlap */
}

/* Header */
header {
  background: #fff;
  border-bottom: 2px solid #f4f4f4;
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  font-weight: 800;
  font-size: 18px;
  color: #e29900;
}

header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

header nav a:hover {
  color: #e29900;
}

/* Product Section */
.container {
  max-width: 1120px;
  margin: 40px auto;
  padding: 40px 20px 0px 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.product-image {
  width: 420px;
  flex-shrink: 0; /* Prevents image from shrinking */
  background: #eee;
  height: 465px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  animation: breathing 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes breathing {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.product-image:hover img {
  animation: none;
  transform: scale(1.04);
}

/* Fix product image link layout */
.product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.details {
  flex: 1; /* Takes remaining space */
}

/* Product Details */
.details h1 {
  font-size: 30px;
  margin-bottom: 8px;
  font-family: 'Convergence', Inter, Arial, sans-serif;
}

.details .price-range {
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.details small {
  color: #777;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Coin options with proper outlines - KEEP GREY OUTLINE */
.opt {
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0.01px solid #e2e8f0; /* Reduced from 2px to 1px */
  background: transparent;
  border-radius: 20px;
  font-weight: 500;
  outline: 0.1px solid #CDCDCD !important; /* Reduced visibility - lighter color */
  box-shadow: none !important; /* Remove any shadow */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.opt:hover {
  border-color: #e29900;
}

.opt.active {
  background: transparent;
  color: inherit;
  border: 2px solid var(--ringoo-blue); /* Thicker blue border for selected */
  transform: scale(1.05);
  outline: 1px solid #ccc !important; /* KEEP grey outline for active coin packages */
}

.price-display {
  font-size: 20px;
  font-weight: 800;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-display .equal {
  color: #000;
}

.price-display .cedis {
  color: #e29900;
}

/* Button Container - 3 buttons in a row - SMALLER WIDTH */
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
  align-items: center;
}

.actions .qty {
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
}

.actions .add-btn,
.actions .clear-btn,
.actions .view-cart-btn {
  flex: 1;
  min-width: 80px; /* Reduced from 100px to 90px */
  padding: 10px 12px; /* Slightly reduced horizontal padding */
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  outline: none !important; /* REMOVE grey outline */
}

.actions .add-btn {
  background: #e29900;
  color: white;
}

.actions .add-btn:hover {
  background: #d88f25;
  transform: translateY(-2px);
}


.actions .clear-btn {
  background: #D3D3D3;
  color: black;
}

.actions .clear-btn:hover {
  background: #c0c0c0;
  transform: translateY(-2px);
}

.actions .view-cart-btn {
  background: var(--ringoo-blue);
  color: white;
  box-shadow: 0 4px 15px rgba(6,72,172,0.3);
}

.actions .view-cart-btn:hover {
  background: #053a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,72,172,0.4);
}

.meta-line {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: #666;
  margin-top: 12px;
  white-space: nowrap;
}

.info {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  font-size: 14px;
  color: #555;
}

/* Success Message */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 12px 16px; /* Slightly smaller */
  border-radius: 6px;
  border-left: 4px solid #28a745;
  margin: 15px 0;
  font-weight: 500;
  display: none;
  font-size: 0.9rem;
}

/* Tabs */
.tabs {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.tab-buttons {
  display: flex;
  gap: 30px;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
}

.tab-buttons button {
  background: none;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  outline: none !important; /* REMOVE grey outline */
}

.tab-buttons button.active {
  color: #e29900;
}

.tab-buttons button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e29900;
  border-radius: 2px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Additional Info Section */
.info-box {
  border: none !important; /* REMOVE border */
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin-bottom: 40px; /* keeps space before related section */
}

.info-left,
.info-right {
  padding: 18px;
}

.info-left {
  flex: 0 0 160px;
  background: #fafafa;
  border-right: 1px solid #ddd;
}

.info-left h3 {
  font-family: 'Convergence', sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
  margin-top: 10px
}

.info-right {
  flex: 1;
}

.info-right p {
  color: #444;
  line-height: 1.5;
}

/* Related Products Section */
.related {
  font-family: 'Convergence', sans-serif;
  font-size: 24px; /* Increased from 20px */
  margin: 20px 0;
  font-weight: 700;
  color: #003399; /* Optional: Add blue color to match your theme */
}

.related-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 15px 5px;
  scrollbar-width: thin;
}

.related-item {
  flex: 0 0 auto;
  width: 230px;
  border: none !important; /* REMOVE border */
  border-radius: 12px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Add shadow instead of border */
}

.related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-thumb {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  width: 79%;
  margin-top: 20px;
  border-radius: 10px;
}

.related-thumb img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.related-item:hover .related-thumb img {
  transform: scale(1.05);
}

.related-name {
  padding: 12px 15px 5px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.3s ease;
  outline: none !important; /* REMOVE outline */
}

/* Related product links styling */
.related-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  outline: none !important; /* REMOVE outline */
}

.related-link:hover .related-name {
    color: #e29900; /* Change to yellow/orange on hover */
    font-family: "Convergence Regular";
}

/* Related products stars and price styling */
.related-stars {
  padding: 0 4px;
  font-size: 18px;
  color: #e29900;
  width: 100%;
  box-sizing: border-box;
  margin: 0px 0;
}

.related-price {
  padding: 0px 12px 10px;
  font-weight: 700;
  color: #003399;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  box-sizing: border-box;
  font-size: 15px;
}

/* Review section styling */
.review-form {
  border: none !important; /* REMOVE border */
  border-radius: 12px;
  padding: 25px;
  background: #fdfdfd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.review-form h3 {
  margin-top: 0;
  color: #333;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.review-form small {
  display: block;
  margin-bottom: 20px;
  color: #666;
}

.stars {
  margin-bottom: 20px;
}

.stars span {
  font-size: 24px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.stars span.active,
.stars span:hover {
  color: #e29900;
}

.review-form textarea,
.review-form input[type="text"],
.review-form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
  outline: none !important; /* REMOVE outline */
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.save-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.save-info input[type="checkbox"] {
  margin-top: 3px;
}

.save-info label {
  font-size: 14px;
  color: #555;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.submit-btn {
  background: #003399;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  outline: none !important; /* REMOVE grey outline */
}

.submit-btn:hover {
  background: #002266;
}

/* Cart Dropdown Panel - MOVED TO RIGHT */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -400px; /* Slightly smaller panel */
  width: 380px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 15px rgba(0,0,0,0.2);
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  padding: 20px; /* Reduced padding */
  border-bottom: 2px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.cart-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.3rem; /* Slightly smaller */
  font-weight: 700;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem; /* Smaller close button */
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
  outline: none !important; /* REMOVE outline */
}

.close-cart:hover {
  color: #000;
}

.cart-items-list {
  padding: 20px; /* Reduced padding */
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 12px; /* Reduced gap */
  padding: 15px 0; /* Reduced padding */
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-icon {
  width: 35px; /* Slightly smaller */
  height: 35px;
  background: var(--soft-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem; /* Smaller icon */
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px; /* Reduced margin */
  font-size: 0.95rem; /* Slightly smaller */
}

.cart-item-meta {
  font-size: 0.85rem; /* Smaller */
  color: #666;
}

.cart-item-price {
  font-weight: 700;
  color: var(--ringoo-blue);
  font-size: 0.95rem; /* Smaller */
  text-align: right;
  min-width: 70px; /* Reduced */
}

/* Individual Remove Button */
.cart-item-remove {
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
  outline: none !important; /* REMOVE outline */
}

.cart-item-remove:hover {
  background: #cc0000;
  transform: scale(1.1);
}

.cart-totals-section {
  padding: 20px; /* Reduced padding */
  border-top: 2px solid #f0f0f0;
  background: #f8f9fa;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px; /* Reduced margin */
  font-weight: 700;
  font-size: 1.1rem; /* Slightly smaller */
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced gap */
}

.cart-btn {
  padding: 12px; /* Reduced padding */
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem; /* Smaller */
  outline: none !important; /* REMOVE outline */
}

.view-cart-btn-full {
  background: white;
  color: var(--ringoo-blue);
  border: 2px solid var(--ringoo-blue);
}

.view-cart-btn-full:hover {
  background: var(--ringoo-blue);
  color: white;
}

.checkout-btn {
  background: var(--ringoo-yellow);
  color: var(--navy);
}

.checkout-btn:hover {
  background: #d88f25;
}

.help-section {
  text-align: center;
  padding: 15px; /* Reduced padding */
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem; /* Smaller */
}

.empty-cart-message {
  text-align: center;
  padding: 40px 20px; /* Reduced padding */
  color: #666;
  font-size: 1rem; /* Smaller */
}

/* Add blue outline to match your theme */
.review-form {
  border: 2px solid var(--ringoo-blue) !important; /* Blue outline */
  border-radius: 12px;
  padding: 25px;
  background: #fdfdfd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Responsive Design */
@media (max-width: 768px) {
  .actions {
    flex-direction: column;
  }
  
  .actions .add-btn,
  .actions .clear-btn,
  .actions .view-cart-btn {
    width: 100%;
  }
  
  .container {
    flex-direction: column;
    gap: 30px;
  }
  
  .product-image {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .cart-panel {
    width: 100%;
    right: -100%;
  }
  
  .related-item {
    width: 200px;
  }
  
  .info-box {
    flex-direction: column;
  }
  
  .info-left {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}



   
    /* Reduced group spacing */
    .group {
      margin-bottom: 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }

    /* Coin description styling */
    .coin-description {
      color: #666;
      font-size: 14px;
      line-height: 1.5;
      margin: 15px 0;
      padding: 12px;
      background: #f8f9fa;
      border-radius: 8px;
      border-left: 4px solid var(--ringoo-blue);
    }

    .trust-message {
      color: #003399;
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 14px;
      background: #f8f9fa;
      padding: 10px 15px;
      border-radius: 8px;
      border-left: 4px solid #003399;
    }

    /* Button Container */
    .actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: 20px 0;
      align-items: center;
    }
	.help-section:hover {
    cursor: pointer;
}
	  
    .actions .qty {
      width: 60px;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 0.9rem;
    }

    .actions .add-btn,
    .actions .clear-btn,
    .actions .view-cart-btn {
      flex: 1;
      min-width: 80px;
      padding: 10px 15px;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
    }

    .actions .add-btn {
      background: #e29900;
      color: white;
    }

    .actions .add-btn:hover {
      background: #d88f25;
      transform: translateY(-2px);
    }

    .actions .clear-btn {
      background: #D3D3D3;
      color: black;
    }

    .actions .clear-btn:hover {
      background: #c0c0c0;
      transform: translateY(-2px);
    }

    .actions .view-cart-btn {
      background: var(--ringoo-blue);
      color: white;
      box-shadow: 0 4px 15px rgba(6,72,172,0.3);
    }

    .actions .view-cart-btn:hover {
      background: #053a8a;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(6,72,172,0.4);
    }

    /* Success Message */
    .success-message {
      background: #d4edda;
      color: #155724;
      padding: 12px 16px;
      border-radius: 6px;
      border-left: 4px solid #28a745;
      margin: 15px 0;
      font-weight: 500;
      display: none;
      font-size: 0.9rem;
    }

    /* IMPROVED Cart Dropdown Panel */
    .cart-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1000;
      display: none;
    }

    .cart-panel {
      position: fixed;
      top: 0;
      right: -400px;
      width: 380px;
      height: 100%;
      background: white;
      box-shadow: -2px 0 15px rgba(0,0,0,0.2);
      z-index: 1001;
      transition: right 0.3s ease;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .cart-panel.open {
      right: 0;
    }

    .cart-header {
      padding: 20px;
      border-bottom: 2px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #f8f9fa;
      flex-shrink: 0;
    }

    .cart-header h3 {
      margin: 0;
      color: var(--navy);
      font-size: 1.3rem;
      font-weight: 700;
    }

    .close-cart {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #666;
      padding: 5px;
      line-height: 1;
    }

    .close-cart:hover {
      color: #000;
    }

    .cart-items-list {
      padding: 20px;
      flex: 1;
      overflow-y: auto;
    }

    .cart-item-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .cart-item-row:last-child {
      border-bottom: none;
    }

    .cart-item-icon {
      width: 40px;
      height: 40px;
      background: var(--soft-gray);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .cart-item-info {
      flex: 1;
      min-width: 0;
    }

    .cart-item-name {
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 4px;
      font-size: 0.95rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .cart-item-meta {
      font-size: 0.85rem;
      color: #666;
    }

    .cart-item-price {
      font-weight: 700;
      color: var(--ringoo-blue);
      font-size: 0.95rem;
      text-align: right;
      min-width: 80px;
      flex-shrink: 0;
    }

    .cart-item-remove {
      background: #ff4444;
      color: white;
      border: none;
      border-radius: 4px;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 0.8rem;
      font-weight: bold;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .cart-item-remove:hover {
      background: #cc0000;
      transform: scale(1.1);
    }

    .cart-totals-section {
      padding: 20px;
      border-top: 2px solid #f0f0f0;
      background: #f8f9fa;
      flex-shrink: 0;
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      font-weight: 700;
      font-size: 1.1rem;
      align-items: center;
    }

    .cart-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cart-btn {
      padding: 12px;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1rem;
      display: block;
    }

    .checkout-btn {
      background: #e29900; /* Yellow background */
      color: white; /* White text */
      border: 2px solid #e29900;
    }

    .checkout-btn:hover {
      background: #d88f25;
      border-color: #d88f25;
      color: white;
    }

    /* Related Products Grid Styles - REDUCED GAP */
    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 0px; /* Reduced from 20px */
    
    }

    .related-item {
      background: white;
      border-radius: 15px;
      padding: 5px;
	  height: 300px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      margin-bottom: 0;
    }

    .related-item:hover {
      transform: translateY(-5px);
    }

    .related-thumb {
      text-align: center;
 
    }

    .related-thumb img {
      max-width: 120%;
      height: auto;
      border-radius: 8px;
    }

    .related-name {
      font-weight: 600;
      font-family: "Convergence", sans-serif;
      color: var(--navy);
      outline: none;
      border: none;
    }

    .related-stars {
      color: #ffc107;
      margin-bottom: 4px;
    }

    .related-price {
      font-weight: 500;
		font-size: 15px;
	font-family: "Montserrat Medium", "Montserrat SemiBold"
      color: var(--ringoo-blue);
    }

    /* Remove outline around related product links */
    .related-link {
      text-decoration: none;
      outline: none;
    }

    .related-link:focus,
    .related-link:hover {
      outline: none;
      text-decoration: none;
    }

    /* Tab button styles - REMOVED OUTLINE */
    .tab-buttons {
      display: flex;
      border-bottom: 2px solid #eee;
      margin-bottom: 20px;
    }

    .tab-btn {
      background: none;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      color: #666;
      transition: all 0.3s ease;
      position: relative;
      outline: none;
    }

    .tab-btn.active {
      color: var(--ringoo-blue);
    }

    .tab-btn.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--ringoo-blue);
    }

    .tab-btn:hover {
      color: var(--ringoo-blue);
    }

    .tab-btn:focus {
      outline: none;
      box-shadow: none;
    }

    /* Tab content */
    .tab-content {
      display: none;
      padding: 20px 0;
    }

    .tab-content.active {
      display: block;
    }

    /* Review form styles - EXPANDED WIDTH */
    .review-form {
      max-width: 100%;
      width: 100%;
      margin: 0 auto;
      border: 1px solid #e0e0e0 !important; /* Added border outline */
      border-radius: 12px;
      padding: 25px;
      background: #fdfdfd;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }

    .review-form h3 {
      margin-bottom: 10px;
      color: var(--navy);
    }

    .review-form small {
      color: #666;
      display: block;
      margin-bottom: 20px;
    }

    .stars {
      margin-bottom: 20px;
    }

    .stars span {
      font-size: 24px;
      color: #ddd;
      cursor: pointer;
      transition: color 0.3s ease;
      margin-right: 5px;
    }

    .stars span:hover,
    .stars span.active {
      color: #ffc107;
    }

    .review-form textarea,
    .review-form input {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
    }

    .review-form textarea {
      height: 100px;
      resize: vertical;
    }

    .save-info {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .save-info input {
      width: auto;
      margin-right: 10px;
    }

    .submit-btn {
      background: var(--ringoo-blue);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .submit-btn:hover {
      background: #053a8a;
    }

    /* Price display */
    .price-display {
      margin: 20px 0;
      font-size: 18px;
    }

    .price-display .amount {
      color: #e29900;
      font-weight: bold;
      font-size: 20px;
    }

    /* Meta line */
    .meta-line {
      display: flex;
      gap: 20px;
      margin: 15px 0;
      font-size: 14px;
      color: #666;
    }

    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .wa-text {
      background: white;
      padding: 8px 12px;
      border-radius: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      color: #25D366;
      font-weight: 600;
      font-size: 14px;
    }

    .wa-icon {
      background: #25D366;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    .wa-icon img {
      width: 25px;
      height: 25px;
    }

   
   
    /* Responsive Design */
    @media (max-width: 768px) {
      .actions {
        flex-direction: column;
      }
      
      .actions .add-btn,
      .actions .clear-btn,
      .actions .view-cart-btn {
        width: 100%;
      }
      
      .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
      }
      
      .meta-line {
        flex-direction: column;
        gap: 10px;
      }

      .cart-panel {
        width: 100%;
        right: -100%;
      }

      .whatsapp-float {
        bottom: 15px;
        right: 15px;
      }

      #currency-selector {
        bottom: 80px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .cart-panel {
        width: 100%;
        right: -100%;
      }
      

      .related-grid {
        grid-template-columns: 1fr;
      }
    }
